OpenMiner  0.0.1a
Voxel game engine
Static Public Member Functions | List of all members
sol::stack::pusher< char[N]> Struct Template Reference

#include <sol.hpp>

Static Public Member Functions

static int push (lua_State *L, const char(&str)[N])
 
static int push (lua_State *L, const char(&str)[N], std::size_t sz)
 

Member Function Documentation

§ push() [1/2]

template<size_t N>
static int sol::stack::pusher< char[N]>::push ( lua_State *  L,
const char(&)  str[N] 
)
inlinestatic
10905  {
10906  lua_pushlstring(L, str, std::char_traits<char>::length(str));
10907  return 1;
10908  }

§ push() [2/2]

template<size_t N>
static int sol::stack::pusher< char[N]>::push ( lua_State *  L,
const char(&)  str[N],
std::size_t  sz 
)
inlinestatic
10910  {
10911  lua_pushlstring(L, str, sz);
10912  return 1;
10913  }

The documentation for this struct was generated from the following file: